DeployLX Software Protection System

Installing DeployLX®

Installing DeployLX is simple. You can download the trial version from the downloads page on XHEO.com or get the latest released version by logging into the My Account section of xheo.com.

Installing DeployLX

To Install DeployLX on Your Machine

  1. Download the latest version from XHEO.com.
  2. Double-click the installer to begin.
  3. Follow the on-screen instructions to install DeployLX.
  4. You can now use DeployLX from the Start meny by selecting All Programs | XHEO | DeployLX Manager.

Assurance Program

The Assurance Program is maintained by XHEO to provide regular updates and fixes to licensed users of our products. If you purchased more than 90 days ago, you will need an Assurance Contract in order to install the latest version of DeployLX.

See http://xheo.com/assurance for more information about the program.

Registering CodeVeil

After registering, you will need to re-process all assemblies protected with the evaluation edition. This will remove the trial warning message from the assembly.

Registering DeployLX Licensing

If you evaluated the software before registering you will need to recreate any license keys and update any licenses or servers created during the evaluation.

To recreate license keys

Select Protect Project from the Home tab of the Ribbon to run the Project Wizard to create new keys and update the protected project.

To update licenses

Note You must recreate the keys as described above before updating the license.

  1. Open the license in the Easy or Advanced License Editor
  2. Select a license/edition from the list.
  3. Select Pick Keys from the Signatures tab of the Ribbon.
  4. Select keys to used to protect the project.

To update a license server

Open the LicenseServer.asmx file you generated with DeployLX and add your serial number to the DeployLxSerialNumbers collection in the constructor.

DeployLXSerialNumbers = New String() { "DLXPRO-XXXX-XXXX-XXXX-XXXX-XXXX" }
' For upgrade versions
DeployLXSerialNumbers = New String() { "DLXPRO-XXXX-XXXX-XXXX-XXXX-XXXX", _
                                       "DLXDEV-XXXX-XXXX-XXXX-XXXX-XXXX" }
DeployLXSerialNumbers = new string[] { "DLXPRO-XXXX-XXXX-XXXX-XXXX-XXXX" };
// For upgrade versions
DeployLXSerialNumbers = new string[] { "DLXPRO-XXXX-XXXX-XXXX-XXXX-XXXX", 
                                       "DLXDEV-XXXX-XXXX-XXXX-XXXX-XXXX" };

See Also